home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-PPC / SIGCONTE.{_N < prev    next >
Text File  |  1999-09-17  |  238b  |  16 lines

  1. #ifndef _ASM_PPC_SIGCONTEXT_H
  2. #define _ASM_PPC_SIGCONTEXT_H
  3.  
  4. #include <asm/ptrace.h>
  5.  
  6.  
  7. struct sigcontext_struct {
  8.     unsigned long    _unused[4];
  9.     int        signal;
  10.     unsigned long    handler;
  11.     unsigned long    oldmask;
  12.     struct pt_regs     *regs;
  13. };
  14.  
  15. #endif
  16.